home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / WAVEPOOL.ARJ / ALARM.WPL next >
Text File  |  1992-04-08  |  338b  |  22 lines

  1.  
  2. #
  3. #       ALARM Wavepool program
  4. #
  5. #       Copyright 1992, Data Assist, Inc.
  6. #
  7.  
  8. BEGIN {
  9.     screate("alarm.sou")
  10.  
  11.     for (c=1; c<=5; ++c) {
  12.         print c;
  13.         for (x=1; x<=100; ++x) {
  14.             sinwave(500, 20);
  15.             quiet(10);
  16.         }
  17.     }
  18.     sclose(0);
  19.     sndvoc("alarm.sou", "alarm.voc");
  20. }
  21.  
  22.